home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / connect.hlp < prev    next >
Encoding:
Text File  |  1990-02-08  |  1.1 KB  |  23 lines

  1. CONNECT(sx,sy{,sz},ex,ey{,ez}); Draw line from (sx,sy{,sz}) to (ex,ey{,ez})
  2.  
  3. The CONNECT procedure will draw a connecting line between two specified
  4. points in the plot area.  The two points are (sx,sy) and (ex,ey) where
  5. 'sx', 'sy', 'ex', and 'ey' are expressions specifying values with
  6. respect to the current plot scaling.  Thus plot scaling values YMIN,
  7. YMAX, etc.  must be set before the CONNECT statement is executed.  If
  8. any of the parameters contains a variable, an implicit loop will be
  9. performed and multiple line segments will be drawn, one for each step
  10. time.
  11.  
  12. CONNECT will accept optional Z axis coordinates; in which case the 3D
  13. plot mode is enabled for subsequent plots until an ERASE is performed.
  14. +
  15. Use this procedure for connecting embedded text labels to points on a
  16. graph, drawing boxes to contain text labels, drawing error bars,
  17. showing the difference between two values, or drawing parametrically
  18. generated traces.
  19.  
  20. Line segments output via CONNECT are not given trace numbers and,
  21. unless a color is specified via a COLOR statement, will appear in
  22. yellow (on graphics interfaces that support color).
  23.